home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / vim-common / README.Debian < prev    next >
Text File  |  2009-09-21  |  2KB  |  50 lines

  1. Vim for Debian
  2. ---------------
  3.  
  4. 1. The current Debian Vim scripts policy can be found in the vim-doc package
  5.    under /usr/share/doc/vim-common and
  6.    <http://pkg-vim.alioth.debian.org/vim-policy.html/>.
  7.  
  8. 2. Before reporting bugs, check if the bug also exists if you run vim
  9.    with "vim -u NONE -U NONE". If not, make sure that the "bug" is not
  10.    a result of a setting in your ~/.vimrc before reporting it.
  11.  
  12.  -- Stefano Zacchiroli <zack@debian.org>   Mon, 10 Apr 2006 09:59:41 -0400
  13.  
  14. MzScheme Vim variant
  15. --------------------
  16.  
  17. As requested by the current MzScheme maintainer (Ari Pollak <ari@debian.org>),
  18. a vim-mzscheme variant is not being built.  The reasons stated are as follows:
  19.  
  20.   1) MzScheme does not build on many of Debian's supported architectures.
  21.  
  22.   2) The MzScheme package is not versioned based on the library.
  23.  
  24.   3) The MzScheme ABI changes with every upstream version.
  25.  
  26.  -- James Vega <jamessan@debian.org> Mon, 10  Apr  2006  09:48:25  -0400
  27.  
  28. Modeline support disabled by default
  29. ------------------------------------
  30.  
  31. Modelines have historically been a source of security/resource vulnerabilities
  32. and are therefore disabled by default in /usr/share/vim/vimcurrent/debian.vim.
  33.  
  34. You can enable them in ~/.vimrc or /etc/vim/vimrc with "set modeline".
  35.  
  36. In order to mimic Vim's default setting (modelines disabled when root, enabled
  37. otherwise), you may instead want to use the following snippet:
  38.  
  39.   if $USER != 'root'
  40.     set modeline
  41.   else
  42.     set nomodeline
  43.   endif
  44.  
  45. The securemodelines script from vim.org (and in the vim-scripts package) may
  46. also be of interest as it provides a way to whitelist exactly which options
  47. may be set from a modeline.
  48.  
  49.  -- James Vega <jamessan@debian.org>  Sun, 04 May 2008 03:11:51 -0400
  50.